home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 23
/
Amiga Format AFCD23 (Feb 1998, Issue 107).iso
/
-seriously_amiga-
/
shareware
/
misc
/
amigaguide_htw
/
miscellaneous
/
testprogram_close.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1997-12-12
|
331b
|
13 lines
/* A test ARexx Program for Multiview/Amigaguide */
CALL CLOSE('STDOUT')
CALL OPEN('STDOUT','CON:50/60/510/70/TEST WINDOW FOR MULTIVIEW AREXX PROGRAM')
SAY 'a'x||' You have just EXITED the node about ONOPEN and ONCLOSE'
SAY 'a'x' This window should go away in 4 seconds.'
DO WHILE TIME('E') < 4
END
CLOSE('STDOUT')
EXIT